div#bredcrumb p {
    display: flex;
    gap: 8px;
    align-items: center;
}

div#bredcrumb p a {
    text-decoration: none;
    color: #222222;
    font-weight: 400;
    font-size: 14px;
    line-height: 150%;
    letter-spacing: 0%;
}
.cpt-grid-container {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 24px;
    padding: 20px 0;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

.cpt-grid-card {
    background: #ffffff;
    border: 1px solid #eef2f5;
    border-radius: 12px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: box-shadow 0.3s ease;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.02), 0 2px 4px -1px rgba(0, 0, 0, 0.02);
}

.cpt-grid-card:hover {
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05);
}

.cpt-card-content-wrapper {
    display: flex;
    flex-direction: column;
}

.cpt-card-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 16px;
    background-color: #EAFAF0;
    color: #238E4C;
    border-radius: 20px;
    margin-bottom: 14px;
    text-transform: capitalize;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
}
h3.cpt-card-title {
    line-height: 100%;
}
.cpt-card-title a {
    margin: 0 0 16px 0;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    text-decoration: none!important;
    color: #222222;
}

.cpt-card-title a:hover {
    color: #2bb673;
}

.cpt-card-image {
    width: 100%;
    height: 210px;
    overflow: hidden;
    border-radius: 0px;
    margin-bottom: 16px;
    background-color: #f7f9fa;
}

.cpt-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.cpt-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, #f0f0f0, #fafafa);
}

.cpt-card-excerpt {
    color: #4E4E4E;
    font-weight: 400;
    font-size: 16px;
    line-height: 150%;
    letter-spacing: 0%;
    vertical-align: middle;
    margin-bottom: 10px!important;
}

.cpt-card-footer {
    margin-top: auto;
}

.cpt-continue-reading {
    font-size: 13px;
    font-weight: 700;
    color: #1c2d5a;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
}
.cpt-card-footer a {
    font-weight: 600;
    font-size: 16px;
    line-height: 100%;
    letter-spacing: 0%;
    color: #0F1F52;
    text-decoration: none!important;
}
.cpt-continue-reading .arrow {
    margin-left: 7px;
    font-size: 28px;
    line-height: 95%;
    transition: transform 0.2s ease;
    height: 27px;
}

.cpt-continue-reading:hover {
    color: #2bb673;
}

.cpt-continue-reading:hover .arrow {
    transform: translateX(3px);
}

.cpt-filter-bar {
    margin-bottom: 30px;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
}

.cpt-filter-form {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
}
.cpt-search-group {
    display: flex;
    align-items: center;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    overflow: hidden;
    background: #fff;
    width: 100%;
    max-width: 460px;
}

.cpt-search-group input[type="text"] {
    border: none !important;
    outline: none !important;
    padding: 10px 16px;
    font-size: 13px;
    width: 100%;
    color: #4a5568;
}

.cpt-search-group button {
    background-color: #2DB661;
    color: #ffffff;
    border: none;
    padding: 13px 16px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    gap: 16px;
    transition: background 0.2s ease;
    align-items: center;
}

.cpt-search-group button:hover {
    background-color: #23985d;
}

.cpt-dropdown-group {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.cpt-select-wrapper {
    position: relative;
}

.cpt-select-wrapper select {
    -webkit-appearance: none;
    background-color: #ffffff;
    border: 1px solid #CED4DA;
    border-radius: 8px;
    padding: 10px 36px 10px 16px;
    color: #212529;
    cursor: pointer;
    outline: none;
    min-width: 160px;
    font-weight: 600;
    font-size: 14px;
    line-height: 100%;
    letter-spacing: 0%;
}

.cpt-select-wrapper::after {
    content: "›";
    font-size: 32px;
    color: #212529;
    transform: rotate(90deg);
    position: absolute;
    right: 10px;
    top: -6px;
    pointer-events: none;
}

.cpt-clear-btn {
    font-size: 12px;
    color: #e53e3e;
    text-decoration: none;
    font-weight: 500;
}
.cpt-clear-btn:hover {
    text-decoration: underline;
}

.cpt-no-results {
    grid-column: 1 / -1;
    text-align: center;
    color: #718096;
    padding: 40px 0;
}

@media (max-width: 768px) {
    .cpt-filter-form {
        flex-direction: column;
        align-items: stretch;
    }
    .cpt-search-group {
        max-width: 100%;
    }
    .cpt-dropdown-group {
        width: 100%;
    }
    .cpt-select-wrapper, .cpt-select-wrapper select {
        width: 100%;
    }
}